(C) 1996 AROS - The Amiga Replacement OS
NAME
#include <stdio.h>
#include <stdarg.h>
int vfprintf()
SYNOPSIS
FILE * stream
const char * format
va_list args
FUNCTION
Format a list of arguments and print them on the specified stream.
INPUTS
stream
A stream on which one can write
format
A printf() format string.
args
A list of arguments for the format string.
RESULT
The number of characters written.
NOTES
EXAMPLE
BUGS
SEE ALSO
INTERNALS
HISTORY
08.01.1997 ldp
Removed/Changed cases of multiple include files
11.12.1996 aros
New functions: sprintf(), vsprintf(), snprintf() vsnprintf()
vfprintf() now uses __vcformat()
11.12.1996 aros
Added/corrected headers
09.12.1996 aros
Added define for BITSPERBYTE if not present
06.12.1996 aros
Real stdio